home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / DelphiDotNet / WebFormProjectTemplate.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  2.6 KB  |  70 lines

  1. library [!ProgramName];
  2.  
  3. uses
  4.   System.Reflection, 
  5.   System.Runtime.CompilerServices;
  6.  
  7. //
  8. // General Information about an assembly is controlled through the following
  9. // set of attributes. Change these attribute values to modify the information
  10. // associated with an assembly.
  11. //
  12. [assembly: AssemblyDescription('')]
  13. [assembly: AssemblyConfiguration('')]
  14. [assembly: AssemblyCompany('')]
  15. [assembly: AssemblyProduct('')]
  16. [assembly: AssemblyCopyright('')]
  17. [assembly: AssemblyTrademark('')]
  18. [assembly: AssemblyCulture('')]
  19.  
  20. // The Delphi compiler controls the AssemblyTitleAttribute via the ExeDescription.
  21. // You can set this in the IDE via the Project Options.
  22. // Manually setting the AssemblyTitle attribute below will override the IDE
  23. // setting.
  24. // [assembly: AssemblyTitle('')]
  25.  
  26.  
  27. //
  28. // Version information for an assembly consists of the following four values:
  29. //
  30. //      Major Version
  31. //      Minor Version 
  32. //      Build Number
  33. //      Revision
  34. //
  35. // You can specify all the values or you can default the Revision and Build Numbers 
  36. // by using the '*' as shown below:
  37.  
  38. [assembly: AssemblyVersion('1.0.*')]
  39.  
  40. //
  41. // In order to sign your assembly you must specify a key to use. Refer to the 
  42. // Microsoft .NET Framework documentation for more information on assembly signing.
  43. //
  44. // Use the attributes below to control which key is used for signing. 
  45. //
  46. // Notes: 
  47. //   (*) If no key is specified, the assembly is not signed.
  48. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  49. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  50. //       a key.
  51. //   (*) If the KeyFile and the KeyName values are both specified, the 
  52. //       following processing occurs:
  53. //       (1) If the KeyName can be found in the CSP, that key is used.
  54. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  55. //           in the KeyFile is installed into the CSP and used.
  56. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  57. //       When specifying the KeyFile, the location of the KeyFile should be
  58. //       relative to the project output directory which is
  59. //       %Project Directory%\bin\<configuration>. For example, if your KeyFile is
  60. //       located in the project directory, you would specify the AssemblyKeyFile 
  61. //       attribute as [assembly: AssemblyKeyFile('..\\..\\mykey.snk')]
  62. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  63. //       documentation for more information on this.
  64. //
  65. [assembly: AssemblyDelaySign(false)]
  66. [assembly: AssemblyKeyFile('')]
  67. [assembly: AssemblyKeyName('')]
  68.  
  69. begin
  70. end.